home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / SpriteWorld 2.0 ƒ / SpriteWorld Examples / Scrolling Demo / Scrolling Demo.h < prev    next >
Encoding:
Text File  |  1996-09-05  |  721 b   |  40 lines  |  [TEXT/KAHL]

  1. ///--------------------------------------------------------------------------------------
  2. // Scrolling Demo.h
  3. //
  4. // By: Vern Jensen
  5. ///--------------------------------------------------------------------------------------
  6.  
  7.  
  8. #ifndef __WINDOWS__
  9. #include <Windows.h>
  10. #endif
  11.  
  12.  
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16.  
  17.  
  18. void    main( void );
  19. void    CreateSpriteWorld( void );
  20. void    CreateSprites( void );
  21. void    SetUpAnimation( void );
  22.  
  23. void    RunAnimation( void );
  24. void    ShutDown( void );
  25.  
  26. void    TileChangeProc(SpriteWorldPtr spriteWorldP);
  27.  
  28. void KeySpriteMoveProc(SpritePtr srcSpriteP);
  29.  
  30. void    SmoothScrollingWorldMoveProc(
  31.     SpriteWorldPtr spriteWorldP,
  32.     SpritePtr followSpriteP);
  33.  
  34. void    UpdateKeys( void );
  35.  
  36.  
  37. #ifdef __cplusplus
  38. }
  39. #endif
  40.